home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / core / FlexShape.as < prev    next >
Text File  |  2009-02-12  |  609b  |  32 lines

  1. package mx.core
  2. {
  3.    import flash.display.Shape;
  4.    import mx.utils.NameUtil;
  5.    
  6.    use namespace mx_internal;
  7.    
  8.    public class FlexShape extends Shape
  9.    {
  10.       
  11.       mx_internal static const VERSION:String = "3.0.0.0";
  12.        
  13.       
  14.       public function FlexShape()
  15.       {
  16.          super();
  17.          try
  18.          {
  19.             name = NameUtil.createUniqueName(this);
  20.          }
  21.          catch(e:Error)
  22.          {
  23.          }
  24.       }
  25.       
  26.       override public function toString() : String
  27.       {
  28.          return NameUtil.displayObjectToString(this);
  29.       }
  30.    }
  31. }
  32.